Uses of Interface
org.eclipse.vtp.framework.spi.ICommand

Packages that use ICommand
org.eclipse.vtp.framework.common.commands   
org.eclipse.vtp.framework.engine.http   
org.eclipse.vtp.framework.engine.runtime   
org.eclipse.vtp.framework.interactions.core.commands   
org.eclipse.vtp.framework.spi   
 

Uses of ICommand in org.eclipse.vtp.framework.common.commands
 

Classes in org.eclipse.vtp.framework.common.commands that implement ICommand
 class ControllerCommand
          Base class for forward, include, and exit commands.
 class ExitCommand
          A command that terminates an included process and returns control to the originating process.
 class ForwardCommand
          A command that tells the process engine to terminate the current process and pass control to another process.
 class IncludeCommand
          A command that tells the process engine to suspend the current process and pass control to another process, resuming the current process when the target process completes.
 

Uses of ICommand in org.eclipse.vtp.framework.engine.http
 

Methods in org.eclipse.vtp.framework.engine.http with parameters of type ICommand
 java.lang.Object DeploymentExecution.visitUnknown(ICommand unknownCommand)
           
 

Uses of ICommand in org.eclipse.vtp.framework.engine.runtime
 

Methods in org.eclipse.vtp.framework.engine.runtime that return ICommand
 ICommand Execution.nextStep()
           
 

Methods in org.eclipse.vtp.framework.engine.runtime with parameters of type ICommand
 boolean Execution.Context.enqueue(ICommand command)
           
 boolean Execution.Context.process(ICommand command)
           
 

Uses of ICommand in org.eclipse.vtp.framework.interactions.core.commands
 

Classes in org.eclipse.vtp.framework.interactions.core.commands that implement ICommand
 class BridgeMessageCommand
          A command that sends a transfer ending to the user.
 class ConversationCommand
          Base class for the conversational commands.
 class DataRequestCommand
          A command that renders output to the user.
 class EndMessageCommand
          A command that ends the conversation with the user.
 class ExternalReferenceCommand
          A command that sends an external reference to the user.
 class FinalCommand
          FinalCommand.
 class InitialCommand
          InitialCommand.
 class InputRequestCommand
          A command that accepts input from the user.
 class MetaDataMessageCommand
          A command that sends meta-data to the user.
 class MetaDataRequestCommand
          A command that requests meta-data from the user.
 class OutputMessageCommand
          A command that renders output to the user.
 class SelectionRequestCommand
          A command that accepts a selection from the user.
 class TransferMessageCommand
          A command that sends a transfer ending to the user.
 

Uses of ICommand in org.eclipse.vtp.framework.spi
 

Subinterfaces of ICommand in org.eclipse.vtp.framework.spi
 interface IRunnableCommand
          A command returned by the process engine when an action or observer is to be executed.
 

Methods in org.eclipse.vtp.framework.spi that return ICommand
 ICommand IExecution.nextStep()
          Returns the next step in the process.
 

Methods in org.eclipse.vtp.framework.spi with parameters of type ICommand
 boolean ICommandProcessor.enqueue(ICommand command)
          Attempts to enqueue the specified command for execution by the process controller.
 boolean ICommandProcessor.process(ICommand command)
          Attempts to enqueue the specified command for execution by the process controller and then waits for all commands in the queue to be processed before returning.
 java.lang.Object ICommandVisitor.visitUnknown(ICommand unknownCommand)
          Called when an implementation-dependent visit method is not available.